home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Komputer for Alle 1999 #5
/
1999 CD 5 (black).iso
/
Delphi3
/
install
/
data.z
/
IMAGVIEW.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-08-05
|
267 b
|
15 lines
program Imagview;
uses
Forms,
Imagewin in 'IMAGEWIN.PAS' {ImageForm},
Viewwin in 'VIEWWIN.PAS' {ViewForm};
{$R *.RES}
begin
Application.CreateForm(TImageForm, ImageForm);
Application.CreateForm(TViewForm, ViewForm);
Application.Run;
end.